home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / flashpc.exe / MAKEFILE < prev    next >
Text File  |  1993-03-25  |  260b  |  13 lines

  1. #options=
  2. options= /Zi /Od
  3. compiler= cl /c /AL /Gt512
  4. wlevel= /W3
  5.  
  6.  
  7. test.exe       : test.obj
  8.                  link /CO /ST:8192 @test.lnk
  9.                  del *.bak
  10.  
  11. test.obj       : test.c
  12.                  $(compiler) $(wlevel) $(options) test.c
  13.